var compress/gzip.le
10 uses
compress/gzip (current package)
gunzip.go#L37: var le = binary.LittleEndian
gunzip.go#L189: if t := int64(le.Uint32(z.buf[4:8])); t > 0 {
gunzip.go#L203: data := make([]byte, le.Uint16(z.buf[:2]))
gunzip.go#L230: digest := le.Uint16(z.buf[:2])
gunzip.go#L265: digest := le.Uint32(z.buf[:4])
gunzip.go#L266: size := le.Uint32(z.buf[4:8])
gzip.go#L97: le.PutUint16(z.buf[:2], uint16(len(b)))
gzip.go#L160: le.PutUint32(z.buf[4:8], uint32(z.ModTime.Unix()))
gzip.go#L246: le.PutUint32(z.buf[:4], z.digest)
gzip.go#L247: le.PutUint32(z.buf[4:8], z.size)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |